home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / unix / src / fchmod.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-19  |  182 b   |  11 lines

  1. #include "amiga.h"
  2. #include <amiga/ioctl.h>
  3.  
  4. int fchmod(int fd, int mode)
  5. {
  6.   long amode = _make_protection(mode);
  7.  
  8.   chkabort();
  9.   return ioctl(fd, _AMIGA_SETPROTECTION, &amode);
  10. }
  11.